home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Plus SuperCD (UK) 1998 August
/
PC Plus SuperCD 50a Issue 142 (CD142a) (August 1998).iso
/
trial
/
demon
/
TURNPIKE.1
/
CLASSES.ZIP
/
JAVA
/
AWT
/
Dimension.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1997-04-14
|
777 b
|
24 lines
package java.awt;
public class Dimension {
public int width;
public int height;
public Dimension() {
this(0, 0);
}
public Dimension(Dimension var1) {
this(var1.width, var1.height);
}
public Dimension(int var1, int var2) {
this.width = var1;
this.height = var2;
}
public String toString() {
return this.getClass().getName() + "[width=" + this.width + ",height=" + this.height + "]";
}
}